home *** CD-ROM | disk | FTP | other *** search
/ Inventor Labs: Technology / INVENTORLABS_TECHNOLOGY.BIN / pc / files / timeln.dir / 00002_Script_Timline Init < prev    next >
Text File  |  1997-05-26  |  747b  |  23 lines

  1. -- GLOBAL BEGIN
  2.  
  3.  
  4. global gActorListMgrObj, gInterfaceMgrObj, gUtilityObj
  5. ----------------------------------------------------------------------------ò
  6. on StartMovie1
  7.   
  8.   set gActorListMgrObj = mInit(script "ActorListMgrParent")
  9.   mSetUp ( gActorListMgrObj )
  10.   
  11.   set gQTpath = the pathname
  12.   set objectCastLists = the text of cast "orderListOfObjectCastLists"
  13.   set InterfaceCastList =  value(line 3 of objectCastLists)
  14.   set gInterfaceMgrObj = mInit(script "Interface Mgr Parent", InterfaceCastList, gQTpath)
  15.   mSetUp(gInterfaceMgrObj)
  16.   
  17.   set gUtilityObj = mInit( script "Utility Parent")
  18.   
  19.   mActivate( gInterfaceMgrObj )
  20.   
  21. end StartMovie1
  22. ----------------------------------------------------------------------------ò
  23.